Notes on stuff for Slayer
~~~~~~~~~~~~~~~~~~~~~~~~~

Jester Removal: The removal code does /not/ replace the BLNV 8008 that was at
		the start of an infected file, but instead inserts a 
		MOV R0,R0.  There are 2 reasons for this;
		
		1. Jester does not infect files starting with MOV R0,R0, and 
		   so this provides a measure of innoculation.
		   
		2. The NV condition code has been depreciated since ARM 2.
		   The new recommended no-op is MOV R0,R0, hence the 
		   disinfected code Slayer produces is more correct :-)
		   
		As far as we are aware this should not matter, as the
		instruction is a no-op anyway, and so any no-op will do just
		as well.
		
